home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / Net_InetAddrHostNum.c < prev    next >
C/C++ Source or Header  |  1988-11-21  |  1KB  |  57 lines

  1. /* 
  2.  * Net_InetAddrHostNum.c --
  3.  *
  4.  *    Extract the host part of an internet address.
  5.  *
  6.  * Copyright 1987 Regents of the University of California
  7.  * All rights reserved.
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifndef lint
  18. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_InetAddrHostNum.c,v 1.1 88/11/21 09:10:12 mendel Exp $ SPRITE (Berkeley)";
  19. #endif not lint
  20.  
  21.  
  22. #include "sprite.h"
  23. #include "net.h"
  24.  
  25. /*
  26.  *----------------------------------------------------------------------
  27.  *
  28.  * Net_InetAddrHostNum --
  29.  *
  30.  *    Return the host portion of an Internet address.
  31.  *    Handles class A/B/C network formats.
  32.  *
  33.  * Results:
  34.  *    The host portion an IP address.
  35.  *
  36.  * Side effects:
  37.  *    None.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. unsigned int
  43. Net_InetAddrHostNum(inetAddr)
  44.     Net_InetAddress inetAddr;
  45. {
  46.     register Net_InetAddress i = Net_NetToHostInt(inetAddr);
  47.  
  48.     if (NET_INET_CLASS_A_ADDR(i)) {
  49.     return((i) & NET_INET_CLASS_A_HOST_MASK);
  50.     } else if (NET_INET_CLASS_B_ADDR(i)) {
  51.     return((i) & NET_INET_CLASS_B_HOST_MASK);
  52.     } else {
  53.     return((i) & NET_INET_CLASS_C_HOST_MASK);
  54.     }
  55. }
  56.  
  57.